{% extends "data_list.html" %} {% load i18n %} {% block getdatalist %} {% if request.user|HasPerm:"base.browse_appoption" %} $("#id_datalist").model_grid({ "dbapp_url": "{{ dbapp_url }}", "model_url": "{{ model_url }}", "disabled_actions": ["_change"], "init_after_get_jdata": function(){ $(".class_select_col").remove(); $("tr[id^='id_row']").each(function(){ if($(this).find('a').html() == "{% trans 'dbversion' %}" ) { $(this).children().next().next().next().html(""); } {% if 'USE_ABROAD_ATT'|filter_config_option %} if($(this).find('a').html() == "{% trans 'browse_title' %}") { $(this).children().next().next().next().html(""); } {% endif %} }) }, "reload_after_get_jdata":function(){ $(".class_select_col").remove(); $("tr[id^='id_row']").each(function(){ if($(this).find('a').html() == "{% trans 'dbversion' %}") { $(this).children().next().next().next().html(""); } {% if 'USE_ABROAD_ATT'|filter_config_option %} if($(this).find('a').html() == "{% trans 'browse_title' %}") { $(this).children().next().next().next().html(""); } {% endif %} }) }, "cached_data": false }); {% else %} $("#id_datalist").remove(); alert(gettext("对不起,您没有访问该页面的权限,不能浏览更多信息!")); window.location.href = "/{{ request.surl }}accounts/login/"; {% endif %} {% endblock %} {% block addjs %} {% if "USE_ABROAD_ATT"|filter_config_option %} $("#id_log_url").addClass("displayN"); $("#id_model_export").addClass("displayN"); {% endif %} {% endblock %}